home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / lstat.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-01  |  209 b   |  13 lines

  1. #include <stat.h>
  2. #include "lib.h"
  3.  
  4. __EXTERN int _do_stat __PROTO((const char *_path, struct stat *st, int lflag));
  5.  
  6. int
  7. lstat(path, st)
  8.     const char *path;
  9.     struct stat *st;
  10. {
  11.     return _do_stat(path, st, 1);
  12. }
  13.